home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / cpphtp2 / code.jar / code / ch15 / fig15_22.txt < prev    next >
Text File  |  1998-02-27  |  339b  |  15 lines

  1. 32  10 rem   determine the larger of two integers
  2. 33  20 input s
  3. 34  30 input t
  4. 35  32 rem
  5. 36  35 rem   test if s >= t 
  6. 37  40 if s >= t goto 90
  7. 38  45 rem
  8. 39  50 rem   t is greater than s, so print t
  9. 40  60 print t
  10. 41  70 goto 99
  11. 42  75 rem
  12. 43  80 rem   s is greater than or equal to t, so print s
  13. 44  90 print s
  14. 45  99 end
  15.